home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / pcuser.com / CENTER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  164 b   |  10 lines

  1. #include <bios.h>
  2. #include <string.h>
  3.  
  4. char *center (string)
  5. char *string;
  6. {
  7.     poscurs (cursrow (), 40 - (strlen (string) / 2));
  8.     return (string);
  9. }
  10.